home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 002 / dbug / readme.amiga < prev    next >
Text File  |  1995-03-17  |  974b  |  35 lines

  1. This is my macro based C debugging system.  I really haven't done much
  2. to mechanize the amiga environment for installing it.  I would suggest
  3. that you do the following manually:
  4.  
  5.     (1)    Make a subdirectory in your C include directory
  6.         called "local".
  7.  
  8.             makedir df1:include/local
  9.  
  10.     (2)    Copy the user program include file dbug.h to this
  11.         local include directory.
  12.  
  13.             copy dbug.h df1:include/local/dbug.h
  14.  
  15.     (3)    Compile the runtime support library source dbug.c and
  16.         place in your library directory as "dbug.lib".  Note
  17.         that libraries are just bunches of object files
  18.         concatenated together (how simple!).
  19.  
  20.             cc -c dbug.c
  21.             copy dbug.o df1:lib/dbug.lib
  22.  
  23.  
  24. You can now compile and link the test programs by:
  25.  
  26.     cc -o factorial main.c factorial.c -ldbug
  27.  
  28. Note that this assumes that you are using my Unix-like "cc", Lattice C
  29. frontend. If not, you will have to fake it with the appropriate dozen
  30. command lines to compile each piece and do the final link.
  31.  
  32. Good luck!
  33.  
  34. -Fred
  35.